'Declaration Public Event RowUpdating As RowUpdatingEventHandler
public event RowUpdatingEventHandler RowUpdating
Event Data
The event handler receives an argument of type RowUpdatingEventArgs containing data related to this event. The following RowUpdatingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Command | Gets the System.Data.IDbCommand to execute during the System.Data.Common.DbDataAdapter.Update(System.Data.DataSet) operation. |
Errors | Gets any errors generated by the .NET Framework data provider when the System.Data.Common.RowUpdatedEventArgs.Command executes. |
Row | Gets the System.Data.DataRow that will be sent to the server as part of an insert, update, or delete operation. |
StatementType | Gets the type of SQL statement to execute. |
Status | Gets or sets the System.Data.UpdateStatus of the System.Data.Common.RowUpdatedEventArgs.Command property. |
TableMapping | Gets the System.Data.Common.DataTableMapping to send through the System.Data.Common.DbDataAdapter.Update(System.Data.DataSet). |
See Also